compress/flate.huffmanBitWriter.nbits (field)
22 uses
compress/flate (current package)
huffman_bit_writer.go#L81: nbits uint
huffman_bit_writer.go#L108: w.bits, w.nbits, w.nbytes, w.err = 0, 0, 0, nil
huffman_bit_writer.go#L113: w.nbits = 0
huffman_bit_writer.go#L117: for w.nbits != 0 {
huffman_bit_writer.go#L120: if w.nbits > 8 { // Avoid underflow
huffman_bit_writer.go#L121: w.nbits -= 8
huffman_bit_writer.go#L123: w.nbits = 0
huffman_bit_writer.go#L143: w.bits |= uint64(b) << w.nbits
huffman_bit_writer.go#L144: w.nbits += nb
huffman_bit_writer.go#L145: if w.nbits >= 48 {
huffman_bit_writer.go#L148: w.nbits -= 48
huffman_bit_writer.go#L171: if w.nbits&7 != 0 {
huffman_bit_writer.go#L175: for w.nbits != 0 {
huffman_bit_writer.go#L178: w.nbits -= 8
huffman_bit_writer.go#L331: w.bits |= uint64(c.code) << w.nbits
huffman_bit_writer.go#L332: w.nbits += uint(c.len)
huffman_bit_writer.go#L333: if w.nbits >= 48 {
huffman_bit_writer.go#L336: w.nbits -= 48
huffman_bit_writer.go#L663: w.bits |= uint64(c.code) << w.nbits
huffman_bit_writer.go#L664: w.nbits += uint(c.len)
huffman_bit_writer.go#L665: if w.nbits < 48 {
huffman_bit_writer.go#L671: w.nbits -= 48
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |